type runtime.plainError

22 uses

	runtime (current package)
		arena.go#L542: 		panic(plainError("runtime: allocation size out of range"))
		chan.go#L69: 		panic(plainError("makechan: size out of range"))
		chan.go#L88: 		panic(plainError("makechan: size out of range"))
		chan.go#L194: 		panic(plainError("send on synctest channel from outside bubble"))
		chan.go#L226: 		panic(plainError("send on closed channel"))
		chan.go#L307: 		panic(plainError("send on closed channel"))
		chan.go#L321: 		panic(plainError("send on synctest channel from outside bubble"))
		chan.go#L416: 		panic(plainError("close of nil channel"))
		chan.go#L422: 		panic(plainError("close of closed channel"))
		chan.go#L538: 		panic(plainError("receive on synctest channel from outside bubble"))
		chan.go#L702: 		panic(plainError("receive on synctest channel from outside bubble"))
		error.go#L108: type plainError string
		error.go#L110: func (e plainError) RuntimeError() {}
		error.go#L112: func (e plainError) Error() string {
		error.go#L356: 	panic(plainError("value method " + pkg + "." + typ + "." + meth + " called using nil *" + typ + " pointer"))
		malloc.go#L1762: 		panic(plainError("runtime: allocation size out of range"))
		map_swiss.go#L25: var maps_errNilAssign error = plainError("assignment to entry in nil map")
		proc.go#L558: 	panic(plainError("arg size to reflect.call more than 1GB"))
		select.go#L181: 				panic(plainError("select on synctest channel from outside bubble"))
		select.go#L542: 	panic(plainError("send on closed channel"))
		time.go#L1382: 			panic(plainError("synctest timer accessed from outside bubble"))
		time.go#L1385: 			panic(plainError("timer moved between synctest bubbles"))